System.Array.IndexOf 方法 (T[], T, Int32, Int32)
方法描述
搜索指定的对象,并返回 Array 中从指定索引开始包含指定个元素的这部分元素中第一个匹配项的索引。
语法定义(C# System.Array.IndexOf 方法 (T[], T, Int32, Int32) 的用法)
public static int IndexOf( T[] array, T value, int startIndex, int count )
参数/返回值
参数值/返回值 | 参数类型/返回类型 | 参数描述/返回描述 |
---|---|---|
array | T[] | 要搜索的从零开始的一维 Array。 |
value | T | 要在 array 中查找的对象。 |
startIndex | System-Int32 | 从零开始的搜索的起始索引。空数组中 0(零)为有效值。 |
count | System-Int32 | 要搜索的部分中的元素数。 |
返回值 | System.Int32 | 如果在 array 中从 startIndex 开始、包含 count 所指定的元素个数的这部分元素中,找到 value 的匹配项,则为第一个匹配项的从零开始的索引;否则为 -1。 |
提示和注释
如果 count 大于 0,则在 Array 中向前搜索,从 startIndex 处开始,到 startIndex + count - 1 处结束。
使用 Object.Equals 方法,将元素与指定的值进行比较。 如果元素类型是非内部(用户定义)类型,则使用该类型的 Equals 实现。
将数组的 Length 属性作为 startindex 参数传递会产生返回值 -1;传递大于 Length 的值会引发 ArgumentOutOfRangeException。
此方法的运算复杂度为 O(n),其中 n 是 count。
System.Array.IndexOf 方法 (T[], T, Int32, Int32)例子
最后,使用 IndexOf
using System; public class Example { public static void Main() { string[] dinosaurs = { "Tyrannosaurus", "Amargasaurus", "Mamenchisaurus", "Brachiosaurus", "Deinonychus", "Tyrannosaurus", "Compsognathus" }; Console.WriteLine(); foreach(string dinosaur in dinosaurs) { Console.WriteLine(dinosaur); } Console.WriteLine( "\nArray.IndexOf(dinosaurs, \"Tyrannosaurus\"): {0}", Array.IndexOf(dinosaurs, "Tyrannosaurus")); Console.WriteLine( "\nArray.IndexOf(dinosaurs, \"Tyrannosaurus\", 3): {0}", Array.IndexOf(dinosaurs, "Tyrannosaurus", 3)); Console.WriteLine( "\nArray.IndexOf(dinosaurs, \"Tyrannosaurus\", 2, 2): {0}", Array.IndexOf(dinosaurs, "Tyrannosaurus", 2, 2)); } } /* This code example produces the following output: Tyrannosaurus Amargasaurus Mamenchisaurus Brachiosaurus Deinonychus Tyrannosaurus Compsognathus Array.IndexOf(dinosaurs, "Tyrannosaurus"): 0 Array.IndexOf(dinosaurs, "Tyrannosaurus", 3): 5 Array.IndexOf(dinosaurs, "Tyrannosaurus", 2, 2): -1 */
异常
异常 | 异常描述 |
---|---|
ArgumentNullException | array 为 null。 |
ArgumentOutOfRangeException |
|
版本信息
.NET Framework 受以下版本支持:4、3.5、3.0、2.0 .NET Framework Client Profile 受以下版本支持:4、3.5 SP1 受以下版本支持:
适用平台
Windows 7, Windows Vista SP1 或更高版本, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008(不支持服务器核心), Windows Server 2008 R2(支持 SP1 或更高版本的服务器核心), Windows Server 2003 SP2 .NET Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求。